home *** CD-ROM | disk | FTP | other *** search
/ SGI Developer Toolbox 6.1 / SGI Developer Toolbox 6.1 - Disc 4.iso / lib / mathlib / libfft / fft1 / Makefile < prev    next >
Encoding:
Makefile  |  1994-08-02  |  462 b   |  27 lines

  1. #!smake
  2. include ../demodefs
  3.  
  4. TARGETS = fast
  5.  
  6. #LIBFFT  = ../mips1/libfft.a
  7. #LIBFFT  = ../mips2/libfft.a
  8. #LIBFFT  = ../mp_mips1/libfft.a
  9. LIBFFT  = ../mp_mips2/libfft.a
  10.  
  11. LLDLIBS = $(LIBFFT) -lgl -mp
  12.  
  13. CFILES = main.c fast.c draw.c init.c menu.c event.c second.c
  14. FFILES = noise.f
  15. HFILES = fast.h event.h
  16.  
  17. include ../demorules
  18.  
  19. MPFLAG = -mp
  20. MIPS   = -mips2
  21. FFLAGS = -O $(MPFLAG) $(MIPS)
  22.  
  23. ${TARGETS}: ${OBJECTS}
  24.     ${F77} -o $@ ${OBJECTS} ${LLDLIBS}
  25.     ${TAG} 0x9006 $@
  26.